1
2
3
4
5
6
7
8
9 package ca.uhn.cache.internal.hibernate.exception;
10
11 import ca.uhn.cache.internal.exception.QueryResultStoreException;
12
13 /***
14 * Thrown by the methods of the class {@link HibernateQueryResultStore} when an
15 * exception thrown by Hibernate is captured.
16 *
17 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
18 * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:54:37 $ by $Author: bryan_tripp $
19 */
20 public class HibernateQueryResultStoreException extends QueryResultStoreException {
21
22 /***
23 * {@inheritDoc}
24 */
25 public HibernateQueryResultStoreException( Throwable theCause ) {
26 super( theCause );
27 }
28
29 /***
30 * {@inheritDoc}
31 */
32 public HibernateQueryResultStoreException( String theMessage, Throwable theCause ) {
33 super( theMessage, theCause );
34 }
35
36 }